home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / UTILITIE / DOS_TEX.ZIP / TEX2ASC.DOC < prev    next >
Text File  |  1993-07-15  |  1KB  |  32 lines

  1. This is the documentation for the tex2asc program.
  2.  
  3. This is *not* a general purpose TeX-to-ASCII conversion program.  It is
  4. specifically designed to convert specific files---namely, classical
  5. Latin texts and their associated commentaries---from TeX format into
  6. ASCII.  It does that well, but will not really do anything else.
  7.  
  8. If you plan to run tex2asc on a Unix machine, you will want to get the
  9. source code (tex2asc.c), and compile that:
  10.  
  11. example% cc tex2asc.c -o tex2asc
  12.  
  13. If you are going to run it on an 80x86/MS-DOS or VAX/VMS, take the
  14. associated binary (vms_tex2asc.exe or dos_tex2asc.exe), and if that
  15. doesn't work, you'll have to get your local guru to help you out.
  16.  
  17. tex2asc is used as a filter, that is, it reads from the stanrard input
  18. and writes on the standard output.  If you (as you probably do) want to
  19. make a .txt (ascii) file from a .tex (TeX) file, you will have to
  20. redirect the input and output:
  21.  
  22. under Unix and DOS,
  23.  
  24. example% tex2asc < file.tex > file.txt
  25.  
  26. under VMS,
  27.  
  28. $ run tex2asc /input=file.tex /output=file.txt
  29.  
  30.  
  31. Have fun!
  32.